7488073db94e839d81bcf802e139c897fc16f30d,flex/flex-shared/src/com/intellij/flex/model/bc/InfoFromConfigFile.java,InfoFromConfigFile,getInfoFromConfigFile,#String#,103

Before Change


      String targetPlayer = null;

      try {
        final Document document = JDOMUtil.loadDocument(configFile);
        final Element rootElement = document.getRootElement();

        if (rootElement != null) {
          final Element fileSpecsElement = rootElement.getChild("file-specs", rootElement.getNamespace());
          mainClassPath = fileSpecsElement == null ? null
                                                   : fileSpecsElement.getChildTextNormalize("path-element", rootElement.getNamespace());

After Change


      String targetPlayer = null;

      try {
        final Element rootElement = JDOMUtil.load(configFile);
        final Element fileSpecsElement = rootElement.getChild("file-specs", rootElement.getNamespace());
        mainClassPath = fileSpecsElement == null ? null
                                                 : fileSpecsElement.getChildTextNormalize("path-element", rootElement.getNamespace());